home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / dune_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # (C) Tenable Network Security
  3.  
  4. if(description)
  5. {
  6.  script_id(11751);
  7.  script_bugtraq_id(7945);
  8.  script_version ("$Revision: 1.6 $");
  9.  
  10.  
  11.  name["english"] = "Dune Web Server Overflow";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running a version of the Dune Web server
  16. which is older than 0.6.8.
  17.  
  18. There is a flaw in this software which may be exploited by an attacker
  19. to gain a shell on this host.
  20.  
  21. Solution : Use another web server or upgrade to Dune 0.6.8
  22. Risk factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Checks for Dune Overflow";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_MIXED_ATTACK);
  32.  
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  35.  family["english"] = "CGI abuses";
  36.  script_family(english:family["english"]);
  37.  script_dependencie("find_service.nes", "http_version.nasl");
  38.  script_require_ports("Services/www", 80);
  39.  exit(0);
  40. }
  41.  
  42.  
  43. include("http_func.inc");
  44. include("http_keepalive.inc");
  45.  
  46.  
  47. port = get_http_port(default:80);
  48.  
  49.  
  50. if(!get_port_state(port))exit(0);
  51.  
  52. if( safe_checks() )
  53.  banner = get_http_banner(port:port);
  54.  if( banner == NULL ) exit(0);
  55.  
  56.  if(egrep(pattern:"^Server: Dune/0\.([0-5]\.|6\.[0-7]$)", string:banner))
  57.   {
  58.    security_hole(port);
  59.   }
  60.   exit(0);
  61. }
  62.  
  63.  
  64. banner = get_http_banner(port:port);
  65. if(!banner)exit(0);
  66. if("Dune/" >!< banner)exit(0);
  67.  
  68. if(http_is_dead(port:port))exit(0);
  69.  
  70. req = http_get(item:"/" + crap(51), port:port);
  71. soc = http_open_socket(port);
  72. if(!soc)exit(0);
  73. send(socket:soc, data:req);
  74. r = http_recv(socket:soc);
  75. close(soc);
  76. if(r)
  77. {
  78.  req = http_get(item:"/~" + crap(50), port:port);
  79.  soc = http_open_socket(port);
  80.  if(!soc)exit(0);
  81.  send(socket:soc, data:req);
  82.  r = http_recv(socket:soc);
  83.  close(soc);
  84.  if(!r)security_hole(port);
  85. }
  86.